home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks95 / Aaron 1.0b3.sit / Aaron 1.0b3 / Aaron Source / ShowInitIcon 1.0 / ShowInitIcon.h < prev    next >
C/C++ Source or Header  |  1995-06-24  |  498b  |  16 lines

  1. #pragma once
  2.  
  3. // Usage: pass the ID of your icon family (ICN#/icl4/icl8) to have it drawn in the right spot.
  4. // If 'advance' is true, the next INIT icon will be drawn to the right of your icon. If it is false, the next INIT icon will overwrite
  5. // yours. You can use it to create animation effects by calling ShowInitIcon several times with 'advance' set to false.
  6.  
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10.  
  11. pascal void ShowInitIcon (short iconFamilyID, Boolean advance);
  12.  
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16.